home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1996 July
/
C-C++ Users Group Library July 1996.iso
/
vol_200
/
223_01
/
clearerr.c
< prev
next >
Wrap
Text File
|
1980-01-01
|
384b
|
16 lines
/*
** clearerr.c by F. A. Scacchitti 11/22/84
**
** Clears errors and end of file marks in fd.
**
*/
#include <stdio.h>
clearerr(fd) int fd; {
*(fd + 40) = NULL;
}